Meaning checked exception
What does checked exception mean? Here you find 2 meanings of the word checked exception. You can also add a definition of checked exception yourself

1

0 Thumbs up   0 Thumbs down

checked exception


A checked exception is a sublcass of Throwable but not of RunTimeException. Such exceptions generally indicate an extra-logical failure (one not related to programming errors; e.g. EndOfFileException) [..]
Source: ics.uci.edu

2

0 Thumbs up   0 Thumbs down

checked exception


An exception that must be caught locally in a try statement, or propagated via a throws clause defined in the method header. See unchecked exception.
Source: cs.kent.ac.uk




<< catch clause class body >>